home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 17 / MacFormat 17 (Spain) / MacFormat 17.bin / Extras / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Objects / Field Properties < prev    next >
Encoding:
Text File  |  1996-01-24  |  357 b   |  16 lines

  1. tell application "FileMaker Pro"
  2.     class of first field
  3.     best type of field "a"
  4.     default type of field -2
  5.     ID of field "b"
  6.     name of field 2
  7.     nulls OK of field 2
  8.     repeats of field "b"
  9.     repeats of field "c"
  10.     repeat size of field "b"
  11.     unique value of field 2
  12.     protection of field -2
  13.     formula of field "c"
  14.     lock of last field
  15.     globalValue of every field
  16. end tell